home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 9
/
The PC-SIG Library on CD ROM - Ninth Edition.iso
/
801_900
/
DISK0829
/
DISK0829.ZIP
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1988-12-11
|
2KB
|
51 lines
rem --------------------------------------------------------------------
rem READ THIS CAREFULLY.......
rem This installation procedure assumes that the ME disk is in drive A
rem and that you want to install ME on drive C. If this is not what you
rem want to do, press CTRL BREAK now. You should then modify this
rem installation file to work with your setup.
rem --------------------------------------------------------------------
pause
rem --------------------------------------------------------------------
rem Make the directory \ME on current drive & create a few subdirectories
rem --------------------------------------------------------------------
pause Put the ME distribution disk in drive A
cd \
md me
cd \me
copy a:arce.com
rem --------------------------------------------------------------------
rem Process HELP - the help files
rem We will install the help files into the \ME\HELP subdirectory.
rem --------------------------------------------------------------------
:a1
pause
arce a:help
rem --------------------------------------------------------------------
rem Process the Macro files
rem We will put the macro source files into \ME\MACROS. Compile the
rem macros which you will use by using the command "maccomp <macroname>".
rem ME does not require any macros to run, so you need not compile
rem any macros if you aren't going to be using any. We will also put
rem the alternate help files which are used by the helpme macro into
rem the \ME\MACROS\HELP subdirectory.
rem --------------------------------------------------------------------
:a2
pause We are going to install the macro files
md macros
cd macros
\me\arce a:macros.arc /v
cd ..
rem --------------------------------------------------------------------
rem Process the main files
rem --------------------------------------------------------------------
:a3
copy a:*.* /v
cls
rem =========== ME is now installed in subdirectory \ME ===============
rem To set the ME environment variable, put the line SET ME=\ME in your
rem AUTOEXEC.BAT file.
rem If you want to dearchive the ME manual, issue the command :
rem ARCE A:MANUAL
rem --------------------------------------------------------------------